iT邦幫忙

2024 iThome 鐵人賽

DAY 28
0
自我挑戰組

學習Java且應用系列 第 28

Java 應用二

  • 分享至 

  • xImage
  •  

九九乘法表

public class Main {
public static void main(String[] args) {
int x = 1;
for (int i = 1; i < 4; i++) {
for (int j = 1; j < 10; j++) {
for (int g = x; g < x + 3; g++) {
System.out.printf("%d*%d=%d\t", g, j, g * j);
if(g<x+2){
System.out.printf("|");
}
}
System.out.println("");
}
System.out.printf("-------------------------\n");
x += 3;
}
}
}
對於九九乘發表這個程式碼,要先將它分為三個區塊,且每個區塊開頭差3,然後每個區塊會跑9次,接者每行會從i開始,符合i+3就跑一圈,最後會利用虛線將它隔開
https://ithelp.ithome.com.tw/upload/images/20241012/201693399aA5uJE2id.png

以下圖片是執行後的結果
https://ithelp.ithome.com.tw/upload/images/20241012/20169339mCCVUZZtyI.png

https://ithelp.ithome.com.tw/upload/images/20241012/20169339t4xtlE7E30.png


上一篇
Java 應用一
下一篇
Java 應用三
系列文
學習Java且應用30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言